@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  list-style-type: none;
  text-decoration: none;
  text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  * {
    font-size: 12px;
  }
}
.hidden {
  display: none !important;
}

.border {
  border: 2px solid magenta !important;
}

.box-shadow {
  box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.1);
}

header nav {
  position: fixed;
  top: 1rem;
  left: 0;
  transform: translateX(5.5%);
  width: 90%;
  height: 60px;
  background: hsla(225, 49%, 44%, 0.7);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
  padding: 1rem;
  border: 2px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 0.6rem;
}
header nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 0 10px;
}
header nav .navbar .nav-links {
  height: -moz-fit-content;
  height: fit-content;
}
header nav .navbar .links {
  display: flex;
  gap: 0.4rem;
}
header nav .navbar .links li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
header nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #F2F2F2;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border-radius: 0.8rem;
  transition: 0.3s linear;
}
header nav .navbar .links li .contact-us {
  cursor: pointer;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  background-color: #BE373A;
  border: 2px solid #BE373A;
  color: #F2F2F2;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  margin-left: 1rem;
  border-radius: 0.4rem;
  transition: 0.4s;
}
header nav .navbar .links li .contact-us:hover {
  background-color: hsl(359, 93%, 36%);
  color: #F2F2F2;
  transform: translateX(10%);
}
header nav .navbar .links li .contact-us:hover i {
  transform: translateX(22%);
}
header nav .navbar .links li a:hover {
  background-color: #1f3269;
}
header nav .navbar .links li:hover .htmlCss-sub-menu,
header nav .navbar .links li:hover .js-sub-menu {
  display: block;
}
header .navbar .links li .sub-menu a {
  color: #F2F2F2;
  font-size: 15px;
  font-weight: 500;
}
header .navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}
header .navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
header .links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}
header .navbar .nav-links .sidebar-logo {
  display: none;
}
header .navbar .bx-menu {
  display: none;
}
@media (max-width: 920px) {
  header nav {
    width: 90%;
    height: 50px;
    transform: translateX(6%);
  }
  header nav .navbar {
    max-width: -moz-fit-content;
    max-width: fit-content;
    justify-content: space-around;
  }
  header nav .navbar .links {
    gap: 0.5rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  header nav .navbar .links li {
    white-space: nowrap;
  }
  header nav .navbar .logo {
    display: flex;
    overflow: hidden;
    margin-right: 3rem;
    flex-shrink: 0;
  }
  header nav .navbar .logo a {
    width: 165px !important;
    padding: 0;
  }
  header nav .navbar .logo img {
    width: 100%;
    display: flex;
    flex-shrink: 0;
  }
  header nav .navbar .links li a {
    font-size: 0.8rem;
    flex-shrink: 1;
    margin-top: 0.3rem;
    padding: 0.4rem 0.8rem;
  }
  header nav .navbar .links li .contact-us {
    margin-top: 0 !important;
    padding: 0.4rem 0.8rem;
  }
}
@media (max-width: 800px) {
  header nav {
    /* position: relative; */
    width: 100%;
    transform: translateX(0);
    top: 0;
    border-radius: 0;
  }
  header #menu-close-x {
    cursor: pointer;
    padding: 0.8rem;
    margin-right: 8vw;
  }
  header #menu-close-x:hover {
    color: hsla(359, 55%, 48%, 0.7);
  }
  header nav .navbar .logo {
    position: absolute;
    transition: 0.5s ease-in-out;
    right: -2rem;
  }
  header .navbar .bx-menu {
    position: absolute;
    left: 1rem;
    display: block;
    cursor: pointer;
  }
  header nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background: #1f3269;
    line-height: 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  header .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  header .sidebar-logo .logo-name {
    width: 80%;
    color: #F2F2F2;
  }
  header .sidebar-logo .logo-name img {
    scale: 0.9;
  }
  header .sidebar-logo i,
  header .navbar .bx-menu {
    font-size: 25px;
    color: #F2F2F2;
  }
  header nav .navbar .links {
    display: block;
    margin: 1rem auto;
    width: 80%;
  }
  header nav .navbar .links li {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
  }
  header nav .navbar .links li a {
    display: block;
    font-size: 1.5rem;
    gap: 1rem;
    border-radius: 0;
  }
  header nav .navbar .links li a:hover {
    background-color: hsla(225, 49%, 44%, 0.7);
  }
  header nav .navbar .links li .contact-us {
    width: 80%;
    padding: 0;
    font-size: 1.5rem;
    margin: 0 auto;
  }
  header nav .navbar .links li .contact-us i {
    font-size: 1.3rem;
    margin-left: 0.6rem;
  }
}
@media (max-width: 370px) {
  header nav .navbar .nav-links {
    max-width: 100%;
  }
}

.footer {
  position: relative;
  width: 100%;
  background: #6D7D8B;
  min-height: 100px;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.4rem 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}
.social-icon__item .menu__link,
.menu__item .menu__link {
  font-weight: 500;
}

.social-icon__link {
  color: #F2F2F2;
  margin: 1rem;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link i {
  font-size: 2rem;
  margin-left: 1rem;
}

.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 1;
  font-weight: 300;
}

.menu__link:hover {
  color: #25313C;
}

.footer p {
  color: #F2F2F2;
  margin: 1rem 0 0.4rem 0;
  font-size: 0.8rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .footer {
    padding: 1rem 0.5rem;
  }
  .menu {
    width: 100%;
  }
}
section {
  height: 100vh;
}
section .main-container {
  height: 100%;
  display: flex;
}
section .main-container .flex-left {
  height: 100vh;
  background: #1f3269;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section .main-container .flex-left form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  width: 70%;
}
section .main-container .flex-left form ::-moz-placeholder {
  color: #F2F2F2;
  opacity: 0.8;
}
section .main-container .flex-left form ::placeholder {
  color: #F2F2F2;
  opacity: 0.8;
}
section .main-container .flex-left form .title {
  color: #F2F2F2;
}
section .main-container .flex-left form .title h1 {
  font-size: 2.2rem;
}
section .main-container .flex-left form .title h3 {
  font-weight: 100;
  font-size: 2rem;
}
section .main-container .flex-left form hr {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  width: 30%;
  height: 0.1rem;
  border: none;
  border-radius: 1rem;
  background: #F2F2F2;
}
section .main-container .flex-left form .email-number {
  display: flex;
  justify-content: space-between;
}
section .main-container .flex-left form .email-number .email, section .main-container .flex-left form .email-number .number {
  width: 48%;
}
section .main-container .flex-left form input {
  background: rgba(242, 242, 242, 0.2470588235);
  height: 50px;
  color: white;
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  border: 2px solid rgba(242, 242, 242, 0.3254901961);
  border-radius: 0.8rem;
}
section .main-container .flex-left form textarea {
  margin-top: 1rem;
  padding: 0.6rem 1rem;
  border: 2px solid rgba(242, 242, 242, 0.3254901961);
  border-radius: 0.8rem;
  background: rgba(242, 242, 242, 0.2470588235);
  color: white;
  resize: none;
}
section .main-container .flex-left form button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 80%;
  margin: 1rem auto;
  background: #BE373A;
  padding: 0.8rem 1rem;
  border: 2px solid #BE373A;
  border-radius: 0.8rem;
  color: white;
  font-size: 1.5rem;
  transition: 0.2s ease;
  cursor: pointer;
}
section .main-container .flex-left form button i {
  font-size: 1.3rem;
}
section .main-container .flex-left form button:hover {
  background: hsla(359, 55%, 48%, 0.7);
  border: 2px solid red;
  transform: translateY(10%);
}
section .main-container .flex-left form button:hover i {
  transform: translateX(20%);
}
section .main-container .flex-right {
  width: 50%;
}
section .main-container .flex-right .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  width: 80%;
  margin: 3rem auto 0 auto;
}
section .main-container .flex-right .container .map {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: white;
}
section .main-container .flex-right .container .map a {
  color: #25313C;
  font-size: 1.2rem;
  font-weight: 600;
  transition: 0.2s linear;
}
section .main-container .flex-right .container .map a i {
  color: #BE373A;
  padding-right: 0.3rem;
  font-size: 2rem;
}
section .main-container .flex-right .container .map a p {
  margin-top: 1rem;
  font-size: 1rem;
  color: #6D7D8B;
  font-weight: 400;
}
section .main-container .flex-right .container .map a:hover, section .main-container .flex-right .container .map :active {
  scale: 1.1;
}
section .main-container .flex-right .container .map .map-container {
  padding: 0.4rem;
  border-radius: 0.8rem;
  background-color: white;
  transition: 0.2s linear;
}
section .main-container .flex-right .container .map .map-container .g-map {
  border-radius: 0.4rem;
  width: 300px;
  height: 150px;
}
section .main-container .flex-right .container .map .map-container:hover, section .main-container .flex-right .container .map :active {
  background-color: hsla(359, 55%, 48%, 0.7);
}
section .main-container .flex-right .container .social-links {
  margin: 1.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
section .main-container .flex-right .container .social-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #25313C;
  background-color: white;
  transition: 0.2s linear;
}
section .main-container .flex-right .container .social-links a p {
  font-size: 1.2rem;
  font-weight: 600;
}
section .main-container .flex-right .container .social-links a p span {
  font-size: 1rem;
  font-weight: 400;
  color: #6D7D8B;
}
section .main-container .flex-right .container .social-links a i {
  font-size: 2.3rem;
}
section .main-container .flex-right .container .social-links a:hover, section .main-container .flex-right .container .social-links :active {
  scale: 1.1;
}

.error-input {
  display: none;
  margin-top: 0.2rem;
  color: #BE373A;
}

@media (max-width: 768px) {
  section {
    height: 100%;
  }
  section .main-container {
    flex-direction: column-reverse;
  }
  section .main-container .flex-left {
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
  }
  section .main-container .flex-left form {
    width: 90% !important;
    margin: 2rem 0;
  }
  section .main-container .flex-left form .email-number {
    flex-direction: column;
  }
  section .main-container .flex-left form .email-number .email, section .main-container .flex-left form .email-number .number {
    width: 100%;
    margin-top: 1rem !important;
  }
  section .main-container .flex-left form .email-number .email input, section .main-container .flex-left form .email-number .number input {
    width: 100%;
  }
  section .main-container .flex-right {
    width: 100%;
    padding: 2rem 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  section .main-container .flex-right .container .map {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}/*# sourceMappingURL=contactus.css.map */